rgss_db 1.0.2 → 1.0.3

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 034e6943acfc933b41a1007908d6f0168285022c05293890e969767e6a46713c
4
- data.tar.gz: 951a7d1a369c7b1706492ed63da5b7766dcd581eb7e84f76c16b880f2b38abaf
3
+ metadata.gz: 3becb1e3c7f49601be62b14d26009cba2201d781ca999bc248dcda7170778041
4
+ data.tar.gz: 50327af52043def4112def1e1ae33c74739b099eef14fe4af6e07037c663a68b
5
5
  SHA512:
6
- metadata.gz: '0272109b2ee79cbe0a9523c240d297be0724b06c6a3248be687d07901a8070c0fbf7b264dcc19d35cc53f566cd75a7f2de3763a4d4c2cb812afe8b57205a2478'
7
- data.tar.gz: 53c71ab236029a22402d990affbc0dc9cee7dff6c7b983a158e4b2e56088c1e703c581557ee14649764ad4ef7a9a8119d4fc757305ac67c08bfa514cdf446dd9
6
+ metadata.gz: 6a9c764d307b085a8e9186bd1f1f12d4db4af74cca76996abbff8170681dccd7841a1e3a62ceb163dd6a0687cb8ee69eee70ae755bd6e7f39d677c75e053bc0f
7
+ data.tar.gz: bf115c8c3dfb5baa0eaae88eecfbbc171c6357a9ad7775066ff2f9385b61e7ce671d6c5d7ae5325ad04d08669cbe0e6fd781ee114df63271ca0dc1dc3ab38a15
data/CHANGELOG.md CHANGED
@@ -1,5 +1,12 @@
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
+
3
10
  ## [1.0.2] - 2024-05-25
4
11
 
5
12
  ### 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 actually see whats changed between versions on the database, something that was impossible with the RPG Maker binary format.
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 found useful!
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 depends (heavily) on a load order
83
- - If this load order does not persists between import and export operations, you will lose this order and (probably) cause a lot of troubles on your project
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) that handles this file much better than this application could do**
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: Actors_custom, Items_custom...
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 everytime you import data into RPG Maker as a security measure
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
@@ -39,7 +39,7 @@ module RgssDb
39
39
 
40
40
  # RPG Maker maps data file (glob pattern)
41
41
  # @return [String]
42
- DATA_FILE_MAPS = "Map[0-9][0-9][1-9]"
42
+ DATA_FILE_MAPS = "Map[0-9][0-9][0-9]"
43
43
 
44
44
  # RPG Maker map infos data file (glob pattern)
45
45
  # @return [String]
@@ -3,5 +3,5 @@
3
3
  module RgssDb
4
4
  # App version as a string
5
5
  # @return [String]
6
- VERSION = "1.0.2"
6
+ VERSION = "1.0.3"
7
7
  end
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.2
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-05-25 00:00:00.000000000 Z
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.6
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