rgss_db 1.0.1 → 1.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +14 -0
- data/README.md +9 -7
- data/lib/rgss_db/model/data_file.rb +1 -1
- data/lib/rgss_db/version.rb +1 -1
- data/lib/rgss_db/view/app_cli.rb +0 -2
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3becb1e3c7f49601be62b14d26009cba2201d781ca999bc248dcda7170778041
|
4
|
+
data.tar.gz: 50327af52043def4112def1e1ae33c74739b099eef14fe4af6e07037c663a68b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6a9c764d307b085a8e9186bd1f1f12d4db4af74cca76996abbff8170681dccd7841a1e3a62ceb163dd6a0687cb8ee69eee70ae755bd6e7f39d677c75e053bc0f
|
7
|
+
data.tar.gz: bf115c8c3dfb5baa0eaae88eecfbbc171c6357a9ad7775066ff2f9385b61e7ce671d6c5d7ae5325ad04d08669cbe0e6fd781ee114df63271ca0dc1dc3ab38a15
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,19 @@
|
|
1
1
|
## [Unreleased]
|
2
2
|
|
3
|
+
## [1.0.3] - 2024-06-08
|
4
|
+
|
5
|
+
### Fixed
|
6
|
+
|
7
|
+
- Fixed map data file glob pattern
|
8
|
+
- Map files ending in 0 were not recognized by the tool
|
9
|
+
|
10
|
+
## [1.0.2] - 2024-05-25
|
11
|
+
|
12
|
+
### Changed
|
13
|
+
|
14
|
+
- Removed unused dependencies from the view
|
15
|
+
- Gemfile changes
|
16
|
+
|
3
17
|
## [1.0.1] - 2024-05-25
|
4
18
|
|
5
19
|
### Changed
|
data/README.md
CHANGED
@@ -49,11 +49,11 @@ This gem is compatible with any RPG Maker editor based on RGSS, including:
|
|
49
49
|
|
50
50
|
The purpose of this tool is to provide version control features on the RPG Maker database files if you are working on your game with a team and using any version control software.
|
51
51
|
|
52
|
-
Now, with JSON/YAML files you can
|
52
|
+
Now, with JSON/YAML files you can see what's changed between versions on the database, something that was impossible with the RPG Maker binary format.
|
53
53
|
|
54
54
|
The only tool that does this that I know of is [rvpacker](https://github.com/ymaxkrapzv/rvpacker), but I haven't been able to get it to work and it doesn't seem to be maintained by anyone anymore, so I made my own tool for this.
|
55
55
|
|
56
|
-
Also, I have included some other cool features you may
|
56
|
+
Also, I have included some other cool features you may find useful!
|
57
57
|
|
58
58
|
List of all supported RPG Maker database files:
|
59
59
|
|
@@ -79,14 +79,14 @@ a few reasons:
|
|
79
79
|
|
80
80
|
- The format of the scripts database file is very different from the rest of the database files
|
81
81
|
- The scripts database file is just a collection of ruby script files
|
82
|
-
- These ruby script files
|
83
|
-
- If this load order does not
|
82
|
+
- These ruby script files depend (heavily) on a load order
|
83
|
+
- If this load order does not persist between import and export operations, you will lose this order and (probably) cause a lot of troubles on your project
|
84
84
|
- Script files can have duplicated names
|
85
85
|
- This can cause problems if these scripts are extracted individually
|
86
86
|
- Script file contents are compressed/decompressed
|
87
87
|
- It would not be just "plug-and-play"
|
88
88
|
- Support for this database file would be very basic and limited
|
89
|
-
- **I have made a [Visual Studio Code extension](https://github.com/SnowSzn/rgss-script-editor)
|
89
|
+
- **I have made a [Visual Studio Code extension](https://github.com/SnowSzn/rgss-script-editor) which handles this file much better than this application could do**
|
90
90
|
- You can check out the features this VS Code extension offers on its repo.
|
91
91
|
|
92
92
|
## Features
|
@@ -100,7 +100,7 @@ a few reasons:
|
|
100
100
|
- JSON
|
101
101
|
- YAML
|
102
102
|
- Alternatively, you can export specific files and also, specific objects inside some database files
|
103
|
-
- These files with custom objects are labeled like
|
103
|
+
- These files with custom objects are labeled like `Actors_custom`, `Items_custom`...
|
104
104
|
- You can also export objects into the binary format
|
105
105
|
- The binary file format will be determined based on the RPG Maker version
|
106
106
|
- **Import Extracted data into RPG Maker**
|
@@ -111,7 +111,7 @@ a few reasons:
|
|
111
111
|
- **You must close the RPG Maker editor before importing data!**
|
112
112
|
- RPG Maker cannot load data files again if it is already running
|
113
113
|
- **Backup Creation**
|
114
|
-
- All your database data will be backed up
|
114
|
+
- All your database data will be backed up every time you import data into RPG Maker as a security measure
|
115
115
|
- You can disable this behavior with a flag (see [options](#options))
|
116
116
|
|
117
117
|
## Screenshots
|
@@ -139,6 +139,8 @@ a few reasons:
|
|
139
139
|
|
140
140
|
## Installation
|
141
141
|
|
142
|
+
The gem is hosted at [RubyGems](https://rubygems.org/gems/rgss_db)
|
143
|
+
|
142
144
|
You can install this gem using the following command:
|
143
145
|
|
144
146
|
$ gem install rgss_db
|
data/lib/rgss_db/version.rb
CHANGED
data/lib/rgss_db/view/app_cli.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rgss_db
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- SnowSzn
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-
|
11
|
+
date: 2024-06-08 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: colorize
|
@@ -461,7 +461,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
461
461
|
- !ruby/object:Gem::Version
|
462
462
|
version: '0'
|
463
463
|
requirements: []
|
464
|
-
rubygems_version: 3.5.
|
464
|
+
rubygems_version: 3.5.11
|
465
465
|
signing_key:
|
466
466
|
specification_version: 4
|
467
467
|
summary: Manipulates the RPG Maker database to export and import RPG Maker data
|